@charset "UTF-8";
/* ========================================
   Gift Home Page - Dynamic Design
   ======================================== */

:root {
    --primary: #d4a574;
    --primary-dark: #b8956a;
    --primary-light: #e8c9a8;
    --accent: #5a9a8a;
    --accent-light: #7ab5a7;
    --text-dark: #2d3436;
    --text: #4a5568;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --bg-white: #ffffff;
    --bg-cream: #fdf9f3;
    --bg-warm: #f7f3ed;
    --bg-dark: #2d3436;
    --border: #e8e4de;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Header
   ======================================== */
#gheader {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}
#gheader .col2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
}
#gheader .logo {
    display: flex;
    align-items: center;
}
#gheader .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
#gheader .logo img {
    height: 40px;
    width: auto;
}
#gheader .logo .site-name {
    margin-left: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}
/* Override drawer library styles */
@media screen and (min-width: 768px) {
    #gheader #gnavi.drawer-nav {
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        background: transparent !important;
        transform: none !important;
        transition: none !important;
    }
}
#gheader #gnavi > nav > .flexBox {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 16px;
}
#gheader #gnavi .order1,
#gheader #gnavi .order2 {
    display: block !important;
}
#gheader .member {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.gnavi-menu {
    display: none;
}
@media screen and (min-width: 768px) {
    .gnavi-menu {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px;
        margin-right: 20px;
    }
    .gnavi-menu li {
        border: none !important;
    }
    .gnavi-menu li a {
        display: block;
        padding: 8px 16px;
        color: var(--text);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        border-radius: 6px;
        transition: all var(--transition);
        border: none !important;
    }
    .gnavi-menu li a:hover {
        color: var(--primary-dark);
        background: var(--bg-cream);
        opacity: 1;
    }
}
#gheader .member li.login a {
    padding: 10px 24px !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none !important;
    border-radius: 8px;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(212,165,116,0.3);
}
#gheader .member li.login a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212,165,116,0.4);
    opacity: 1;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    padding: 140px 24px 80px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 50%, #fff 100%);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(212,165,116,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(90,154,138,0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212,165,116,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,165,116,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(90,154,138,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
@media screen and (min-width: 768px) {
    .hero-section {
        padding: 180px 40px 120px;
    }
}
.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}
.hero-title {
    font-size: 32px;
    line-height: 1.4;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-title .highlight {
    color: var(--primary-dark);
    position: relative;
}
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-light), rgba(212,165,116,0.3));
    z-index: -1;
    border-radius: 4px;
}
@media screen and (min-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
}
.hero-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
    .hero-text {
        font-size: 18px;
    }
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(212,165,116,0.35);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,165,116,0.45);
    opacity: 1;
}
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition);
}
.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    opacity: 1;
}
.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}
.hero-feature i {
    color: var(--accent);
    font-size: 16px;
}

/* ========================================
   Section Common
   ======================================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header.light .section-label,
.section-header.light .section-title {
    color: #fff;
}
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}
@media screen and (min-width: 768px) {
    .section-title {
        font-size: 36px;
    }
}
.section-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 12px;
}
.section-more {
    text-align: center;
    margin-top: 48px;
}
.section-more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
}
.section-more a:hover {
    gap: 12px;
}
.section-more.light a {
    color: var(--primary-light);
}

/* ========================================
   Use Cases Section
   ======================================== */
.usecase-section {
    padding: 100px 0;
    background: var(--bg-white);
}
.usecase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media screen and (min-width: 768px) {
    .usecase-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.usecase-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all var(--transition);
}
.usecase-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    opacity: 1;
}
.usecase-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.usecase-icon i {
    font-size: 24px;
    color: var(--primary-dark);
}
.usecase-content {
    flex: 1;
}
.usecase-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.usecase-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}
.usecase-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: all var(--transition);
}
.usecase-card:hover .usecase-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* ========================================
   Why Section
   ======================================== */
.why-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media screen and (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.why-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.why-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: var(--bg-warm);
    line-height: 1;
}
.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(212,165,116,0.3);
}
.why-icon i {
    font-size: 28px;
    color: #fff;
}
.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.why-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   Industry Section
   ======================================== */
.industry-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent) 0%, #4a8a7a 100%);
}
.industry-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
}
.industry-chip {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.industry-chip:hover {
    background: #fff;
    color: var(--accent);
    transform: translateY(-2px);
    opacity: 1;
}

/* ========================================
   Amount Section
   ======================================== */
.amount-section {
    padding: 100px 0;
    background: var(--bg-white);
}
.amount-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .amount-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.amount-card {
    position: relative;
    background: var(--bg-cream);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}
.amount-card:hover {
    border-color: var(--primary);
}
.amount-card.featured {
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    border-color: var(--primary);
}
.amount-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
}
.amount-scene {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 500;
}
.amount-range {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}
.amount-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
}
.amount-unit {
    font-size: 14px;
    color: var(--text);
}
.amount-separator {
    font-size: 20px;
    color: var(--text-light);
    margin: 0 4px;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212,165,116,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.cta-content {
    position: relative;
    text-align: center;
    z-index: 1;
}
.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
    .cta-content h2 {
        font-size: 36px;
    }
}
.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    line-height: 1.8;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(212,165,116,0.3);
}
.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,165,116,0.45);
    opacity: 1;
}
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition);
}
.btn-cta-secondary:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
    opacity: 1;
}

/* ========================================
   Footer
   ======================================== */
#gFooter {
    background: var(--bg-warm);
    border-top: 1px solid var(--border);
    padding: 48px 24px 32px;
}
#gFooter .col2 {
    max-width: 1100px;
    margin: 0 auto;
}
#gFooter .leftBox {
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 48px;
}
@media screen and (max-width: 767.9px) {
    #gFooter .leftBox {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 24px;
    }
}
#gFooter .logo {
    flex-shrink: 0;
}
#gFooter .logo img {
    height: 48px;
    width: auto;
}
#gFooter .footer-content {
    text-align: left;
    flex: 1;
}
@media screen and (max-width: 767.9px) {
    #gFooter .footer-content {
        text-align: center;
    }
}
#gFooter .navi {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 0;
    margin-bottom: 8px;
}
@media screen and (max-width: 767.9px) {
    #gFooter .navi {
        justify-content: center;
    }
}
#gFooter .navi li a {
    display: block;
    padding: 8px 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition);
}
#gFooter .navi li a:hover {
    color: var(--primary-dark);
}
#gFooter .navi-sub li a {
    font-size: 12px;
    color: var(--text-light);
    padding: 6px 16px;
}
#gFooter .copy {
    color: var(--text-muted);
    font-size: 11px;
    margin-top: 16px;
}

/* ========================================
   Mobile
   ======================================== */
@media screen and (max-width: 767.9px) {
    #gheader {
        height: auto !important;
    }
    #gheader .col2 {
        padding: 12px 16px;
    }
    #gheader .logo img {
        height: 32px;
    }
    #gheader .logo .site-name {
        display: none;
    }
    #gheader .member li.login a {
        padding: 8px 16px !important;
        font-size: 12px;
    }
    .hero-section {
        padding: 100px 20px 60px;
    }
    .hero-title {
        font-size: 26px;
    }
    .hero-text {
        font-size: 15px;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    .hero-features {
        gap: 16px;
    }
    .hero-feature {
        font-size: 12px;
    }
    .usecase-section,
    .why-section,
    .industry-section,
    .amount-section,
    .cta-section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 24px;
    }
    .why-card {
        padding: 32px 24px;
    }
    .amount-value {
        font-size: 28px;
    }
}

/* ========================================
   Utilities
   ======================================== */
.view-pc {
    display: none;
}
@media screen and (min-width: 768px) {
    .view-pc {
        display: inline;
    }
}

/* ========================================
   Enhanced Design - Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Hero enhancements */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(90,154,138,0.3);
}

.hero-title .highlight {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

.hero-title .highlight::after {
    background: linear-gradient(90deg,
        rgba(212,165,116,0.4) 0%,
        rgba(212,165,116,0.6) 50%,
        rgba(212,165,116,0.4) 100%);
}

/* Floating icons */
.hero-feature i {
    animation: float 3s ease-in-out infinite;
}
.hero-feature:nth-child(2) i {
    animation-delay: 0.5s;
}
.hero-feature:nth-child(3) i {
    animation-delay: 1s;
}

/* Enhanced Cards */
.usecase-card {
    position: relative;
    overflow: hidden;
}
.usecase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,165,116,0.1), transparent);
    transition: left 0.5s ease;
}
.usecase-card:hover::before {
    left: 100%;
}

.usecase-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.usecase-card:hover .usecase-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(212,165,116,0.25);
}

/* Why cards enhancement */
.why-card {
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212,165,116,0.08) 0%, transparent 70%);
    transition: all 0.5s ease;
    opacity: 0;
}
.why-card:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

.why-icon {
    position: relative;
}
.why-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}
.why-card:hover .why-icon::after {
    opacity: 1;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.why-number {
    transition: all 0.3s ease;
}
.why-card:hover .why-number {
    color: var(--primary-light);
    transform: scale(1.1);
}

/* Industry chips enhancement */
.industry-chip {
    position: relative;
    overflow: hidden;
}
.industry-chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}
.industry-chip:hover::before {
    width: 300%;
    height: 300%;
}

/* Amount cards enhancement */
.amount-card {
    position: relative;
    overflow: hidden;
}
.amount-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.amount-card:hover::after {
    transform: scaleX(1);
}

.amount-card.featured {
    transform: scale(1.02);
}
.amount-card.featured::after {
    transform: scaleX(1);
}

.amount-value {
    transition: all 0.3s ease;
}
.amount-card:hover .amount-value {
    transform: scale(1.1);
}

/* CTA section enhancement */
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(90,154,138,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.btn-cta-primary {
    position: relative;
    overflow: hidden;
}
.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn-cta-primary:hover::before {
    left: 100%;
}

/* Section decorations */
.usecase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.why-section {
    position: relative;
}
.why-section::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 5%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(212,165,116,0.15);
    border-radius: 50%;
}
.why-section::after {
    content: '';
    position: absolute;
    bottom: 80px;
    right: 8%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(90,154,138,0.1);
    border-radius: 50%;
}

/* Button icons animation */
.btn-hero-primary i,
.btn-hero-secondary i,
.btn-cta-primary i,
.btn-cta-secondary i {
    transition: transform 0.3s ease;
}
.btn-hero-primary:hover i,
.btn-cta-primary:hover i {
    transform: scale(1.2);
}
.btn-hero-secondary:hover i,
.btn-cta-secondary:hover i {
    transform: translateX(5px);
}

/* Section label decoration */
.section-label {
    position: relative;
    padding-left: 20px;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: currentColor;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Scroll animations */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.usecase-card.animate-ready:nth-child(1) { transition-delay: 0s; }
.usecase-card.animate-ready:nth-child(2) { transition-delay: 0.1s; }
.usecase-card.animate-ready:nth-child(3) { transition-delay: 0.2s; }
.usecase-card.animate-ready:nth-child(4) { transition-delay: 0.3s; }

.why-card.animate-ready:nth-child(1) { transition-delay: 0s; }
.why-card.animate-ready:nth-child(2) { transition-delay: 0.15s; }
.why-card.animate-ready:nth-child(3) { transition-delay: 0.3s; }

.industry-chip.animate-ready:nth-child(1) { transition-delay: 0s; }
.industry-chip.animate-ready:nth-child(2) { transition-delay: 0.05s; }
.industry-chip.animate-ready:nth-child(3) { transition-delay: 0.1s; }
.industry-chip.animate-ready:nth-child(4) { transition-delay: 0.15s; }
.industry-chip.animate-ready:nth-child(5) { transition-delay: 0.2s; }
.industry-chip.animate-ready:nth-child(6) { transition-delay: 0.25s; }

.amount-card.animate-ready:nth-child(1) { transition-delay: 0s; }
.amount-card.animate-ready:nth-child(2) { transition-delay: 0.1s; }
.amount-card.animate-ready:nth-child(3) { transition-delay: 0.2s; }

/* Header scroll state */
#gheader.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.98) !important;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .animate-ready {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero-content,
    .hero-badge,
    .hero-feature i {
        animation: none;
    }
    .hero-title .highlight {
        animation: none;
        -webkit-text-fill-color: var(--primary-dark);
        background: none;
    }
}

/* Print styles */
@media print {
    .hero-section {
        background: #fff !important;
    }
    .industry-section,
    .cta-section {
        background: #f5f5f5 !important;
        color: #333 !important;
    }
    .animate-ready {
        opacity: 1;
        transform: none;
    }
}

/* ========================================
   Trust Section
   ======================================== */
.trust-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}
.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media screen and (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (min-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.trust-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.trust-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(90,154,138,0.25);
}
.trust-icon i {
    font-size: 26px;
    color: #fff;
}
.trust-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.trust-card p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}
.trust-company {
    margin-top: 48px;
}
.trust-company-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 32px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    max-width: 600px;
    margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
    .trust-company-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}
.trust-company-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-company-icon i {
    font-size: 20px;
    color: #fff;
}
.trust-company-info {
    text-align: left;
}
@media screen and (max-width: 767.9px) {
    .trust-company-info {
        text-align: center;
    }
}
.trust-company-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 4px;
}
.trust-company-name a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color var(--transition);
}
.trust-company-name a:hover {
    color: var(--accent);
}
.trust-company-address {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Trust card animations */
.trust-card.animate-ready:nth-child(1) { transition-delay: 0s; }
.trust-card.animate-ready:nth-child(2) { transition-delay: 0.1s; }
.trust-card.animate-ready:nth-child(3) { transition-delay: 0.2s; }
.trust-card.animate-ready:nth-child(4) { transition-delay: 0.3s; }

/* Mobile adjustments for trust section */
@media screen and (max-width: 767.9px) {
    .trust-section {
        padding: 60px 0;
    }
    .trust-card {
        padding: 24px 20px;
    }
    .trust-icon {
        width: 56px;
        height: 56px;
    }
    .trust-icon i {
        font-size: 22px;
    }
}

/* Footer company info styles */
.footer-company-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.footer-company-info .company-name {
    font-size: 12px;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.6;
}
.footer-company-info .company-name a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-company-info .company-name a:hover {
    color: var(--accent);
}
.footer-company-info .company-address {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

#gFooter .navi li a {
    padding: 10px 16px;
}
#gFooter .navi-sub li a {
    padding: 8px 16px;
}
#gFooter .navi {
    margin-bottom: 12px;
}
